JavaScript

listObj.editInplaceAddRow Method

Syntax

listObj.editInplaceAddRow(rowNum)

Arguments

rowNumnumber

Zero-based row number to add the new row. "0" corresponds to the first row in the list.

Description

Add a new row to a List with in-place editing.

Discussion

The editInplaceAddRow() method adds a new record row below the specified row. The new row is automatically placed in edit mode.

Example

var lObj = {dialog.object}.getControl('LIST1');
if (lObj) {
    // Add a new record at row 3.
    lObj.editInplaceAddRow(2);
}

Limitations

List Control with In-place Editing Enabled

See Also